CGI.getFileContent

Get the content of a file in the cgi environment with string name and the index. keep in mind that we can have the same cgi variable with string name several times index allows us to specify which one we want.

returns a string of the file's content.

  1. string getFileContent(string name)
  2. string getFileContent(string name, int index)
    class CGI
    string
    getFileContent
    (
    string name
    ,
    int index
    )

Meta